翻訳と辞書
Words near each other
・ Selected reaction monitoring
・ Selected Reserve
・ Selected Scenes from the End of the World
・ Selected Shorts
・ Selected Songs 1999–2005
・ Selected Stories
・ Selected Stories of Lu Hsun
・ Selected Stories of Philip K. Dick
・ Selected-ion flow-tube mass spectrometry
・ Selectfluor
・ Selectin
・ Selection
・ Selection (album)
・ Selection (Australian history)
・ Selection (biology)
Selection (genetic algorithm)
・ Selection (linguistics)
・ Selection (relational algebra)
・ Selection (user interface)
・ Selection algorithm
・ Selection and amplification binding assay
・ Selection and Training in the British Army
・ Selection Best
・ Selection bias
・ Selection box
・ Selection coefficient
・ Selection Committee
・ Selection cutting
・ Selection in planning
・ Selection methods in plant breeding based on mode of reproduction


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Selection (genetic algorithm) : ウィキペディア英語版
Selection (genetic algorithm)
Selection is the stage of a genetic algorithm in which individual genomes are chosen from a population for later breeding (using the crossover operator).
A generic selection procedure may be implemented as follows:
#The fitness function is evaluated for each individual, providing fitness values, which are then normalized. Normalization means dividing the fitness value of each individual by the sum of all fitness values, so that the sum of all resulting fitness values equals 1.
#The population is sorted by descending fitness values.
#Accumulated normalized fitness values are computed (the accumulated fitness value of an individual is the sum of its own fitness value plus the fitness values of all the previous individuals). The accumulated fitness of the last individual should be 1 (otherwise something went wrong in the normalization step).
#A random number ''R'' between 0 and 1 is chosen.
#The selected individual is the first one whose accumulated normalized value is greater than ''R''.
If this procedure is repeated until there are enough selected individuals, this selection method is called fitness proportionate selection or ''roulette-wheel selection''. If instead of a single pointer spun multiple times, there are multiple, equally spaced pointers on a wheel that is spun once, it is called stochastic universal sampling.
Repeatedly selecting the best individual of a randomly chosen subset is tournament selection. Taking the best half, third or another proportion of the individuals is truncation selection.
There are other selection algorithms that do not consider all individuals for selection, but only those with a fitness value that is higher than a given (arbitrary) constant. Other algorithms select from a restricted pool where only a certain percentage of the individuals are allowed, based on fitness value.
Retaining the best individuals in a generation unchanged in the next generation, is called ''elitism'' or ''elitist selection''. It is a successful (slight) variant of the general process of constructing a new population.
==See also==

*Fitness proportionate selection
*Stochastic universal sampling
*Tournament selection
*Reward-based selection

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Selection (genetic algorithm)」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.